home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1995
/
MacHack 1995.toast
/
Presentations
/
Presentations ’91
/
MPW Stand-Alone Libraries
/
CPlusXCMD.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-05-26
|
439b
|
43 lines
#include <Memory.h>
#include <StdLib.h>
#include <strstream.h>
#include <HyperXCmd.h>
class TDittle {
protected:
strstream dave;
public:
TDittle();
virtual ~TDittle();
virtual char * GetDave(void);
};
class TDig : public TDittle {
protected:
strstream allan;
public:
TDig();
virtual ~TDig();
virtual char * GetDave(void);
virtual char * GetAllan(void);
virtual char * GetDaveAndAllan(char * astr);
};